home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-07-17 | 759 b | 27 lines | [TEXT/CWIE] |
- // ===========================================================================
- // String_Utils.h ©1993 Metrowerks Inc. All rights reserved.
- // ===========================================================================
-
- #ifndef __STRING_UTILS__
- #define __STRING_UTILS__
-
- #ifndef __MACTYPES__
- #include <MacTypes.h>
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- extern StringPtr CopyPStr(ConstStr255Param inSourceStr, StringPtr outDestStr,
- SInt16 inDestSize = sizeof(Str255));
- extern StringPtr ConcatPStr(Str255 ioFirstStr, ConstStr255Param inSecondStr,
- SInt16 inDestSize = sizeof(Str255));
-
- extern Boolean PStr_Identical(ConstStr255Param inStringOne, ConstStr255Param inStringTwo);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif // __STRING_UTILS__